home *** CD-ROM | disk | FTP | other *** search
- echo off
- CLS
- echo This is a typical .BAT file for making an .EXE file of WATCH_ME.1st.
- echo It uses the utility "WWP_MAKE.EXE" to produce "DEMO.EXE."
- echo
- echo To conserve archive space and to show you how easy it is to make
- echo an executible .EXE file, we want you to do it yourself. We leave
- echo the individual file for you to investigate later. See how we
- echo implemented the menus and hid the "Help," and Order Form.
- echo
- echo The resulting file will be "branded," using a seed number of 1234567
- echo and a serial number of 1000. If the correct validation code, in this
- echo case - 2236 - is not used as the command line argument, the 'nag' screen
- echo buried in "Branding Your Own Creation" will appear as intended.
- echo
- echo For a more detailed discussion of branding run WWP_MAKE with no command
- echo line arguments or review the material in MANUAL.TXT.
- echo
- echo It's really very simple. Here goes!
- echo on
- WWP_MAKE DEMO.EXE WATCH_ME.1ST 1234567,1000
- echo off
- echo Now let's see the result!!
- DEMO
- CLS
- echo If you would like to see the presentation again, this time without the
- echo 'nag' screen found in the "Branding Your Creation" menu selection,
- echo let's try using the validation code, '2236', the validation code for
- echo serial number 1000 and seed number 1234567 which was imbedded in
- echo DEMO.EXE during its creation.
- DEMO 2236
-
-